home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / BlindAlleys.dxr / 00100GPak Generic GFX_21.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  364 b   |  13 lines

  1. on exitFrame me
  2.   global win, points
  3.   if win = "yes" then
  4.     puppetSound(3, "win")
  5.     member("youwin").text = "You Win!!!"
  6.     member("points").text = "total score:" && string(points) && "pts"
  7.   else
  8.     puppetSound(3, "lose")
  9.     member("youwin").text = "give it another try!"
  10.     member("points").text = "total score:" && string(points) && "pts"
  11.   end if
  12. end
  13.